home *** CD-ROM | disk | FTP | other *** search
/ Virtual Sex (VCA Interactive) / Virtual Sex (VCA Interactive).iso / mac / Virtual Sex 68K Mac / MAIN / 00029.ls < prev    next >
Encoding:
Text File  |  1995-06-22  |  761 b   |  51 lines

  1. global gJR, gTM, gMS, gWin, gPlayedbefore
  2.  
  3. on setup
  4.   set gJR to 0
  5.   set gTM to 0
  6.   set gMS to 0
  7. end
  8.  
  9. on startMovie
  10.   set gWin to 0
  11.   if gPlayedbefore <> 1 then
  12.     set gPlayedbefore to 1
  13.     play frame the frame + 1
  14.   else
  15.     play frame "newGame"
  16.   end if
  17. end
  18.  
  19. on jakeShake
  20.   set gWin to gJR + gTM + gMS
  21.   if gWin = 3 then
  22.     play frame "kel"
  23.   else
  24.     nothing()
  25.   end if
  26.   if gJR = 0 then
  27.     set the visible of sprite 17 to 1
  28.   end if
  29.   if gTM = 0 then
  30.     set the visible of sprite 16 to 1
  31.   end if
  32.   if gMS = 0 then
  33.     set the visible of sprite 18 to 1
  34.   end if
  35. end
  36.  
  37. on JRbut
  38.   set gJR to 1
  39.   play movie "Virtual Sex:VS_JR"
  40. end
  41.  
  42. on TMbut
  43.   set gTM to 1
  44.   play movie "Virtual Sex:VS_TM"
  45. end
  46.  
  47. on MSbut
  48.   set gMS to 1
  49.   play movie "Virtual Sex:VS_MS"
  50. end
  51.